home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / OS / FWToolbx / Sources / FWCurCon.cpp < prev    next >
Encoding:
Text File  |  1996-08-16  |  1.4 KB  |  39 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWCurCon.cpp
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #include "FWOS.hpp"
  11.  
  12. #ifndef FWCURSOR_H
  13. #include "FWCursor.h"
  14. #endif
  15.  
  16. //========================================================================================
  17. //    Runtime Informations
  18. //========================================================================================
  19.  
  20. #ifdef FW_BUILD_MAC    
  21. #pragma segment fwtoolbx
  22. #endif
  23.  
  24. //========================================================================================
  25. // Predefined Cursors
  26. //========================================================================================
  27.  
  28. const FW_CCursor FW_gArrowCursor(FW_kArrowCursor);
  29. const FW_CCursor FW_gIBeamCursor(FW_kIBeamCursor);
  30. const FW_CCursor FW_gCrossHairCursor(FW_kCrossHairCursor);
  31. const FW_CCursor FW_gWaitCursor(FW_kWaitCursor);
  32. const FW_CCursor FW_gOpenHandCursor(FW_kOpenHandCursor);
  33. const FW_CCursor FW_gClosedHandCursor(FW_kClosedHandCursor);
  34. const FW_CCursor FW_gSizeWECursor(FW_kSizeWECursor);
  35. const FW_CCursor FW_gSizeNSCursor(FW_kSizeNSCursor);
  36. const FW_CCursor FW_gSizeNWSECursor(FW_kSizeNWSECursor);
  37. const FW_CCursor FW_gSizeNESWCursor(FW_kSizeNESWCursor);
  38.  
  39.